java  중 OkHttp 사용 방법 및 인 스 턴 스

7249 단어 자바OkHttp
java  중 OkHttp 사용 방법 및 인 스 턴 스
개술
Retrofit 를 연구 하려 고 합 니 다.OkHttp 에 의존 하기 때문에 먼저 OkHttp 를 사용 하고 소스 코드 를 깊이 연구 하지 않 고 사용 방법 만 탐구 합 니 다.나중에 기회 가 되면 원본 코드 를 다시 뒤 져 보 세 요.
진행 하기 전에 먼저 jar 가방 2 개가 필요 합 니 다.그 중 하 나 는 okHttp 의 jar 가방 입 니 다.github 에서 다운로드 할 수 있 고 다른 하 나 는 의존 가방 입 니 다.이것 은 매우 중요 합 니 다.그것 이 없 으 면 프로젝트 가 실 행 될 수 없습니다.
OkHttp 가 요청 한 두 가지 방법
네트워크 요청 과 관련 된 것 을 추측 하기 어렵 지 않 습 니 다.그러면 두 가지 방식 이 아 닙 니 다.하 나 는 리 셋 을 사용 하 는 것 이 고 다른 하 나 는 하위 스 레 드 를 켜 서 실행 하 는 것 입 니 다.
첫 번 째:하위 스 레 드 실행 열기

OkHttpClient client = new OkHttpClient(); 
Request build = new Request.Builder().url(url).build(); 
try { 
<span style="white-space:pre">  </span>Response execute = client.newCall(build).execute(); 
  if(execute.isSuccessful()){ 
    System.out.println("wisely aaa"); 
  } else { 
    System.out.println("wisely bbb"); 
  } 
} catch (IOException e) { 
  e.printStackTrace(); 
} 
두 번 째:리 셋 을 사용 합 니 다.저 는 개인 적 으로 이런 것 을 가장 좋아 합 니 다.PS:자신 이 정말 too young too simple 이 라 고 생각 합 니 다!!원래 리 셋 하 는 방법 이 메 인 스 레 드 인 줄 알 았 는데 서브 스 레 드,서브 스 레 드...)

OkHttpClient client = new OkHttpClient(); 
Request build = new Request.Builder().url(url).build(); 
client.newCall(build).enqueue(new Callback() { 
 
  @Override 
  public void onResponse(Response arg0) throws IOException { 
    System.out.println("wisely  success"); 
  } 
 
  @Override 
  public void onFailure(Request arg0, IOException arg1) { 
    System.out.println("wisely  failure"); 
  } 
});  
OkHttp 의 get 요청
1.그림 가 져 오기

OkHttpClient client = new OkHttpClient(); 
     
Request build = new Request.Builder().url(url).build(); 
client.newCall(build).enqueue(new Callback() { 
       
  @Override 
  public void onResponse(Response response) throws IOException { 
//   byte[] bytes = response.body().bytes(); 
    InputStream is = response.body().byteStream(); 
    Options options = new BitmapFactory.Options(); 
    options.inSampleSize = 8; 
//   Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length,options); 
    Bitmap bitmap = BitmapFactory.decodeStream(is, null, options); 
    Message msg = handler.obtainMessage(); 
    msg.obj = bitmap; 
    handler.sendMessage(msg); 
  } 
     
  @Override 
  public void onFailure(Request arg0, IOException arg1) { 
    System.out.println("wisely fail:"+arg1.getCause().getMessage()); 
  } 
}); 
핵심 코드 만 썼 고 handler 관련 코드 는 쓰 지 않 았 습 니 다.
네트워크 그림 을 가 져 오 는 방법 은 두 가지 가 있 습 니 다.하 나 는 byte 배열 을 가 져 오 는 것 이 고,다른 하 나 는 입력 흐름 을 가 져 오 는 것 입 니 다.onResponse 가 하위 스 레 드 에서...
OkHttp 의 post 요청
get 요청 보다 post 요청 의 분류 가 많 습 니 다.
1.우선 가장 자주 사용 하 는 양식 을 제출 합 니 다.

OkHttpClient client = new OkHttpClient(); 
 
RequestBody body = new FormEncodingBuilder() 
    .add("userName", "13363114390") 
    .add("password", "200820e3227815ed1756a6b531e7e0d2").build(); 
 
Request build = new Request.Builder().url(url).post(body).build(); 
client.newCall(build).enqueue(new Callback() { 
 
  @Override 
  public void onResponse(Response response) throws IOException { 
    String lenght = response.header("Content-Length"); 
    System.out.println("wisely--lenght:" + lenght); 
 
    LoginResponse loginResponse = new Gson().fromJson(response.body().charStream(), LoginResponse.class); 
    System.out.println("wisely---" + loginResponse.getMessage()); 
  } 
 
  @Override 
  public void onFailure(Request arg0, IOException arg1) { 
    System.out.println("wisely-----fail"); 
  } 
}); 

String tokeId; 
  boolean result; 
 
  public boolean isResult() { 
    return result; 
  } 
 
  public void setResult(boolean result) { 
    this.result = result; 
  } 
 
  public String getMessage() { 
    return message; 
  } 
 
  public void setMessage(String message) { 
    this.message = message; 
  } 
 
  public String getTokeId() { 
    return tokeId; 
  } 
 
  public void setTokeId(String tokeId) { 
    this.tokeId = tokeId; 
  } 
 
} 
위 에 있 는 것 은 간단 한 로그 인 폼 의 제출 입 니 다.그 중에서 돌아 온 제 이 슨 데 이 터 를 bean 에 밀봉 하 였 습 니 다.제 이 슨 데 이 터 를 얻 을 수 있 는 것 외 에 도 각 메시지 헤드 를 얻 을 수 있 습 니 다.
2.사진 업로드
이것 은 제 가 가장 관심 을 가 지 는 기능 입 니 다.실험 에 의 하면 okHttp 가 사진 을 올 리 는 기능 이 정말 강하 고 다 중 사진 업 로드 를 지원 한 다 는 것 을 증명 합 니 다.

private MediaType PNG = MediaType.parse("application/octet-stream"); 

OkHttpClient client = new OkHttpClient(); 
     
RequestBody body = new MultipartBuilder() 
    .type(MultipartBuilder.FORM) 
    .addPart(Headers.of("Content-Disposition","form-data; name=\"files\";filename=\"img1.jpg\""),RequestBody.create(PNG, file1)) 
    .addPart(Headers.of("Content-Disposition","form-data; name=\"files\";filename=\"img2.jpg\""),RequestBody.create(PNG, file2)).build(); 
     
Request request = new Request.Builder() 
  <span style="white-space:pre">  </span>.url(url) 
    .post(body).build(); 
client.newCall(request).enqueue(new Callback() { 
       
  @Override 
  public void onResponse(Response response) throws IOException { 
         
    if(response.isSuccessful()){ 
      UploadPNGResponse uploadPNGResponse = new Gson().fromJson(response.body().charStream(), UploadPNGResponse.class); 
      String msg = uploadPNGResponse.getMsg(); 
           
      List<String> list = uploadPNGResponse.getList(); 
      for (String string : list) { 
        System.out.println("wisely---path:"+string); 
      } 
           
    } 
  } 
       
  @Override 
  public void onFailure(Request arg0, IOException arg1) { 
    System.out.println("wisely---fail--"+arg1.getCause().getMessage()); 
  } 
}); 






class UploadPNGResponse{  
String msg; 
  boolean result; 
  List<String> list; 
  public String getMsg() { 
    return msg; 
  } 
  public void setMsg(String msg) { 
    this.msg = msg; 
  } 
  public boolean isResult() { 
    return result; 
  } 
  public void setResult(boolean result) { 
    this.result = result; 
  } 
  public List<String> getList() { 
    return list; 
  } 
  public void setList(List<String> list) { 
    this.list = list; 
  } 
} 
 읽 어 주 셔 서 감사합니다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기